home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / getdtablesize.c,v < prev    next >
Text File  |  1988-06-19  |  941b  |  64 lines

  1. head     1.1;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.1
  9. date     88.06.19.14.31.20;  author ouster;  state Exp;
  10. branches ;
  11. next     ;
  12.  
  13.  
  14. desc
  15. @@
  16.  
  17.  
  18.  
  19. 1.1
  20. log
  21. @Initial revision
  22. @
  23. text
  24. @/* 
  25.  * getdtablesize.c --
  26.  *
  27.  *    Procedure to map from Unix getdtablesize system call to Sprite.
  28.  *
  29.  * Copyright 1986 Regents of the University of California
  30.  * All rights reserved.
  31.  */
  32.  
  33. #ifndef lint
  34. static char rcsid[] = "$Header: getpagesize,v 1.1 86/04/20 18:34:53 andrew Exp $ SPRITE (Berkeley)";
  35. #endif not lint
  36.  
  37. #include "sprite.h"
  38.  
  39. #include "compatInt.h"
  40.  
  41.  
  42. /*
  43.  *----------------------------------------------------------------------
  44.  *
  45.  * getdtablesize --
  46.  *
  47.  *    Fake procedure for Unix getdtablesize call. 
  48.  *
  49.  * Results:
  50.  *    The number of descriptors used by Sprite is returned.
  51.  *
  52.  * Side effects:
  53.  *    None.
  54.  *
  55.  *----------------------------------------------------------------------
  56.  */
  57.  
  58. int
  59. getdtablesize()
  60. {
  61.     return(100);
  62. }
  63. @
  64.